home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmSplash
- BackColor = &H80000012&
- BorderStyle = 3 'Fester Dialog
- ClientHeight = 4560
- ClientLeft = 255
- ClientTop = 1410
- ClientWidth = 7380
- ClipControls = 0 'False
- ControlBox = 0 'False
- Icon = "frmSplash.frx":0000
- KeyPreview = -1 'True
- LinkTopic = "Form2"
- MaxButton = 0 'False
- MinButton = 0 'False
- Moveable = 0 'False
- ScaleHeight = 4560
- ScaleWidth = 7380
- ShowInTaskbar = 0 'False
- StartUpPosition = 2 'Bildschirmmitte
- Begin VB.Frame Frame1
- BackColor = &H80000012&
- Height = 4395
- Left = 150
- TabIndex = 0
- Top = 60
- Width = 7080
- Begin VB.Timer Timer2
- Interval = 4000
- Left = 1800
- Top = 3120
- End
- Begin VB.Timer Timer1
- Interval = 2000
- Left = 1080
- Top = 3120
- End
- Begin VB.Label Label1
- BackColor = &H00000000&
- Caption = "By Michael Hauck"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 12
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H0000FFFF&
- Height = 375
- Left = 4560
- TabIndex = 1
- Top = 3960
- Width = 2055
- End
- Begin VB.Image Image1
- Height = 3735
- Left = 120
- Picture = "frmSplash.frx":000C
- Stretch = -1 'True
- Top = 120
- Width = 6855
- End
- Begin VB.Image Image2
- Height = 3675
- Left = 120
- Picture = "frmSplash.frx":4951E
- Stretch = -1 'True
- Top = 240
- Width = 6855
- End
- End
- Attribute VB_Name = "frmSplash"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub Form_KeyPress(KeyAscii As Integer)
- Unload Me
- End Sub
- Private Sub Frame1_Click()
- Unload Me
- End Sub
- Private Sub Timer1_Timer()
- Image1.Picture = Image2.Picture
- Timer1.Enabled = False
- End Sub
- Private Sub Timer2_Timer()
- Form2.Show
- Timer2.Enabled = False
- frmSplash.Hide
- End Sub
-